diff options
| author | Eltik <[email protected]> | 2023-10-09 18:25:37 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-10 05:25:37 +0700 |
| commit | 77eb41dcf3c63a7e3539d1fc6fcf2ca2f5e116a4 (patch) | |
| tree | 593ef66a934af1c15692eb5fed886857e1880325 /pages/en/anime/watch/[...info].js | |
| parent | Create pre-release.md (diff) | |
| download | moopa-77eb41dcf3c63a7e3539d1fc6fcf2ca2f5e116a4.tar.xz moopa-77eb41dcf3c63a7e3539d1fc6fcf2ca2f5e116a4.zip | |
Small bug fixes (#85)
Diffstat (limited to 'pages/en/anime/watch/[...info].js')
| -rw-r--r-- | pages/en/anime/watch/[...info].js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/en/anime/watch/[...info].js b/pages/en/anime/watch/[...info].js index 0b470a8..f918f86 100644 --- a/pages/en/anime/watch/[...info].js +++ b/pages/en/anime/watch/[...info].js @@ -30,7 +30,7 @@ export async function getServerSideProps(context) { } const proxy = process.env.PROXY_URI; - const disqus = process.env.DISQUS_SHORTNAME; + const disqus = process.env.DISQUS_SHORTNAME || null; const [aniId, provider] = query?.info; const watchId = query?.id; |